home *** CD-ROM | disk | FTP | other *** search
AMOS Source Code | 1994-03-12 | 717 b | 24 lines |
- ' *************************************
- ' * *
- ' * Simple Blend V1.0 *
- ' * Written by Chris Hodges *
- ' * *
- ' *************************************
- '
- Screen Open 0,320,200,4,0
- Curs Off : Flash Off : Paper 0 : Cls
- Palette 0,0,0,0
- Dim E$(2)
- Global PAGE,E$()
- Writing 2
- Repeat
- BLEND["HELLO WORLD!"] : Wait 100
- BLEND["PROFESSIONAL BLEND WITH AMOS"] : Wait 100
- BLEND["THIS PROCEDURE IS EASY TO USE!"] : Wait 100
- BLEND["PRESS ANY KEY TO EXIT!"] : Wait 100
- Until Inkey$<>""
- Procedure BLEND[E$]
- Add PAGE,1,0 To 1
- Pen PAGE+1 : Centre E$(PAGE) : E$(PAGE)=E$ : Centre E$
- Fade 3,0,4096+(PAGE=0),4096+(PAGE=1),$FFF
- End Proc